home *** CD-ROM | disk | FTP | other *** search
- IFND FILES_SEGMENTS_I
- FILES_SEGMENTS_I SET 1
-
- **
- ** $VER: segments.i V0.8B
- **
- ** Segment Definitions.
- **
- ** (C) Copyright 1996-1997 DreamWorld Productions.
- ** All Rights Reserved
- **
-
- IFND DPKERNEL_I
- include 'games/dpkernel.i'
- ENDC
-
- ****************************************************************************
- * Segment object.
-
- SEGVERSION = 1
- TAGS_SEGMENT = (ID_SPCTAGS<<16)|ID_SEGMENT
-
- STRUCTURE SEG,HEAD_SIZEOF ;Standard header.
- APTR SEG_Prev ;Previous segment.
- APTR SEG_Next ;Next segment.
- LONG SEG_MemType ;Memory type (eg MEM_DATA).
- APTR SEG_Address ;Pointer to segment start.
- APTR SEG_Source ;Source of segment (NB: FileName only).
-
- SGA_Prev = (TAPTR|SEG_Prev)
- SGA_Next = (TAPTR|SEG_Next)
- SGA_Source = (TAPTR|SEG_Source)
-
- ENDC ;FILES_SEGMENTS_I
-
-